home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / newlooklib.lha / newlook / moveitext.c < prev    next >
C/C++ Source or Header  |  1993-10-24  |  197b  |  17 lines

  1. /*
  2.  *  MOVEITEXT.C
  3.  */
  4.  
  5. #include "newlook.h"
  6.  
  7. void MoveIText(it, dx,dy)
  8. struct IntuiText *it;
  9. SHORT dx,dy;
  10. {
  11.   while(it)
  12.   { it->LeftEdge += dx;
  13.     it->TopEdge  += dy;
  14.     it= it->NextText;
  15.   }
  16. }
  17.